home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19980424-19980901 / 000087_news@newsmaster….columbia.edu _Sun May 17 18:06:59 1998.msg < prev    next >
Internet Message Format  |  1998-08-31  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id SAA02222
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sun, 17 May 1998 18:06:58 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id SAA19719
  7.     for kermit.misc@watsun; Sun, 17 May 1998 18:06:58 -0400 (EDT)
  8. Path: news.columbia.edu!sol.ctr.columbia.edu!news.indiana.edu!ais.net!cpk-news-hub1.bbnplanet.com!news.bbnplanet.com!wn3feed!worldnet.att.net!204.127.130.5!mtf1!newsadm
  9. From: Bernie <bfb@worldnet.att.net>
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: TAKE command file error problem
  12. Date: Sun, 17 May 1998 20:44:31 +0000
  13. Organization: AT&T WorldNet Services
  14. Lines: 30
  15. Message-ID: <6jni7f$kh6@bgtnsc03.worldnet.att.net>
  16. NNTP-Posting-Host: 12.68.111.64
  17. Mime-Version: 1.0
  18. Content-Type: text/plain; charset=us-ascii
  19. Content-Transfer-Encoding: 7bit
  20. X-Mailer: Mozilla 4.04 [en] (X11; I; Linux 2.0.31 i586)
  21. Xref: news.columbia.edu comp.protocols.kermit.misc:8740
  22.  
  23. I have a macro defined as follows:
  24.  
  25. define work -
  26. define recipients bernie@cji.com,-
  27. define mtype multitech,-
  28. define mline /dev/term/i1H,-
  29. define mspeed 19200,-
  30. define ddir /home/oper
  31.  
  32.  
  33. Then later in the script, the following is executed:
  34.  
  35. set line \m(mline)
  36. if failure goto errhandler
  37. set speed \m(mspeed)
  38. if failure goto errhandler
  39.  
  40. When the "set line \m(mline)" is executed, it generates the following
  41. error:
  42.  
  43. ?Error in TAKE command file: Line too long or contains NUL characters
  44.  
  45. This same script works ok at home with C-Kernmit for linux.  I only
  46. encounter
  47. the error when I run the script on our UnixWare 2.02 server at work,
  48. using the
  49. same version number, 6.0.192.
  50.  
  51. Any suggestions would be appreciated.
  52.